home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2006 December / PCWDEC06.iso / Software / Trial / Paint Shop Pro XI / Data1.cab / _98EC088D87D24315B4D9E75255CC96BA < prev    next >
Encoding:
Text File  |  2006-08-04  |  680 b   |  28 lines

  1. from PSPApp import *
  2.  
  3. def ScriptProperties():
  4.     return {
  5.         'Author': u'Corel Corporation',
  6.         'Copyright': u'Copyright (c) 2003-2004 Corel Corporation  All rights reserved.',
  7.         'Description': u'',
  8.         'Host': u'Paint Shop Pro',
  9.         'Host Version': u'8.10'
  10.         }
  11.  
  12. def Preset_BrushStrokes():
  13.     return {
  14.         'Angle': 0, 
  15.         'Bristles': 200, 
  16.         'Color': (249,249,225), 
  17.         'Density': 90, 
  18.         'Length': 2, 
  19.         'Opacity': 20, 
  20.         'Softness': 20, 
  21.         'Width': 2
  22.         }
  23.  
  24. def Do(Environment):
  25.     # Brush Strokes
  26.     App.Do( Environment, 'BrushStrokes',         Preset_BrushStrokes())
  27.  
  28.